Show: Today's Messages :: Unanswered Messages :: Polls :: Message Navigator
4981 Search Results Found
1 Forum: SQL & PL/SQL «» Posted on: Wed, 27 September 2023 16:26 «» By: Duane
Inserted JSON into Column is being Truncated
…00,"user":{"id":63,"username":"eburras1q"}},{"id":2,"body":"What terrific math skills you’re showing!","postId":27,"user":{"id":71,"username":&…
2 Forum: SQL & PL/SQL «» Posted on: Thu, 28 September 2023 11:33 «» By: Barbara Boehmer
Re: Inserted JSON into Column is being Truncated
…,"user" :{"id":63,"username":"eburras1q"}},{"id":2,"body":"What terrific math skills you ’re showing!","postId":27,"user":{"id":71,"username":&…
3 Forum: SQL & PL/SQL «» Posted on: Thu, 28 September 2023 01:00 «» By: Barbara Boehmer
Re: Inserted JSON into Column is being Truncated
…,"user" :{"id":63,"username":"eburras1q"}},{"id":2,"body":"What terrific math skills you ’re showing!","postId":27,"user":{"id":71,"username":&…
4 Forum: Security «» Posted on: Sun, 14 August 2022 05:57 «» By: Andrey_R
ORA-01017: invalid username/password
…> conn test/1 ERROR: ORA-01017: invalid username/password; logon denied Warning: You are no longer connected to ORACLE. SQL> SYS does connect OK SQL> SQL> conn sys as sysdba Enter password: Connected. SQL> SQLNET.ORA has…
5 Forum: Data Guard «» Posted on: Thu, 28 September 2023 13:30 «» By: LIPEKA
Re: RMAN-00554 RMAN-04006
…reserved. ERROR: ORA-01017: invalid username/password; logon denied Enter user-name: sys as sysdba Enter password: Connected to an idle instance. SQL> startup ORACLE instance started. Total System Global Area 4865390248 bytes Fixed …
6 Forum: Client Tools «» Posted on: Sun, 23 July 2023 12:07 «» By: John Watson
Re: problems with servers (tns:protocol adapter error)
…t;oerr ora 1017 01017, 00000, "invalid username/password; logon denied" // *Cause:     An invalid username or password was entered in an //             attempt to…
7 Forum: Forms «» Posted on: Tue, 29 August 2023 04:24 «» By: mfahimaamirgmailcom
Re: Enable\Disable menu items for different users
…bsp;argument 1 to builtin DECLARE USERNAME VARCHAR2(40); BEGIN USERNAME := Get_Application_Property(USERNAME); SET_MENU_ITEM_PROPERTY('MANUMENUWINDOW.TEST1',ENABLED,PROPERTY_FALSE); END; DECLARE USERNAME VARCHAR2(40); BEGIN…
8 Forum: SQL & PL/SQL «» Posted on: Tue, 16 April 2024 11:20 «» By: Michel Cadot
Re: Convert input from user into UPPERCASE
…case, Oracle will do it: SQL> select username from all_users where username='TEST123'; no rows selected SQL> create user test123 identified by "test123"; User created. SQL> select username from all_users where username='…
9 Forum: SQL & PL/SQL «» Posted on: Tue, 16 April 2024 10:52 «» By: Barbara Boehmer
Re: Convert input from user into UPPERCASE
…2.1.0.2.0> ACCEPT muser CHAR PROMPT 'Give username :' Give username :Test123 SCOTT@orcl_12.1.0.2.0> SELECT UPPER('&&muser') AS muser FROM DUAL  2  / 1 row selected. SCOTT@orcl_12.1.0.2.0> CREATE USER "&…
10 Forum: SQL & PL/SQL «» Posted on: Tue, 16 April 2024 10:35 «» By: Barbara Boehmer
Re: Convert input from user into UPPERCASE
…2.1.0.2.0> ACCEPT muser CHAR PROMPT 'Give username :' Give username :Test123 SCOTT@orcl_12.1.0.2.0> DECLARE  2    v_user  VARCHAR2(10) := UPPER('&&muser');  3  BEGIN  4    …
11 Forum: Server Administration «» Posted on: Thu, 10 November 2022 01:24 «» By: jesuisantony
Proxy PDB Connection Fails with Password Error
…-------------- ORAPDB_PROXY SQL> select username from dba_users where username='TEST'; USERNAME ------------------------------ TEST SQL> When connecting to reference PDB it just says Enter user-name: test/test@ORAPDB ERROR: ORA-01017…
12 Forum: Security «» Posted on: Sun, 14 August 2022 07:32 «» By: Andrey_R
Re: ORA-01017: invalid username/password
…st/"a" ERROR: ORA-01017: invalid username/password; logon denied Warning: You are no longer connected to ORACLE. SQL> conn test/a ERROR: ORA-01017: invalid username/password; logon denied SQL> conn test/A ERROR: ORA-01017…
13 Forum: Forms «» Posted on: Thu, 31 August 2023 05:16 «» By: mfahimaamirgmailcom
Menu roles table: how to create and use it
…code in startup code declare  l_username varchar2(40); begin  l_username := get_application_property(username); SET_MENU_ITEM_PROPERTY('MANUMENUWINDOW.TEST1',ENABLED,PROPERTY_FALSE); end; Dear Sir, I followed this code, but the …
14 Forum: Forms «» Posted on: Thu, 31 August 2023 00:20 «» By: mfahimaamirgmailcom
Re: Enable\Disable menu items for different users
…my code in startup code  declare   l_username varchar2(40); begin   l_username := get_application_property(username);  SET_MENU_ITEM_PROPERTY('MANUMENUWINDOW.TEST1',ENABLED,PROPERTY_FALSE); end; sir see attached picture Could you please …
15 Forum: Forms «» Posted on: Tue, 29 August 2023 05:27 «» By: Littlefoot
Re: Enable\Disable menu items for different users
…, it was as if you wrote GET_APPLICATION_PROPERTY(NULL) and that's invalid. Try something like declare  l_username varchar2(40); begin  l_username := get_application_property(username);  -- the rest of your code goes here end…
16 Forum: Oracle Fusion Apps & E-Business Suite «» Posted on: Tue, 06 June 2023 07:42 «» By: ahmedelsadr
Re: Moving From EBS to Fusion - main differences
…ion, for example ON fusion supplier can have username and password and access your fusion, and see their financial statements and entering their invoices themselves, the same for customer portal who are now can get direct access to see their statements…
17 Forum: SQL & PL/SQL «» Posted on: Wed, 03 April 2024 08:58 «» By: Barbara Boehmer
Re: Implement Profile, PW Policy & Roles
… to determine if you already have such a thing: select username from dba_users where username = 'DBSEC'; My best guess is that DBSEC is an abbreviation for database security. You may find that you have it, but the account needs to be unlocked…
18 Forum: Forms «» Posted on: Tue, 05 December 2023 04:07 «» By: Littlefoot
Re: ON-LOGON trigger not working (merged)
… (plus additional optional) parameters: - username: any valid username of up to 80 characters - password: any valid password of up to 80 characters, including a database connect string which means that you used it properly. Documentation example …
19 Forum: Oracle Fusion Apps & E-Business Suite «» Posted on: Fri, 10 February 2023 09:43 «» By: ccpCCP88
XDOLoader error for eTEXT template download
…acle.apps.xdo.oa.util.XDOLoader DOWNLOAD -DB_USERNAME apps -DB_PASSWORD devapps -JDBC_CONNECTION "devcgffinapp01.xx.com:PORT=1521:prod" -LOB_TYPEDATA_TEMPLATE -APPS_SHORT_NAME "oks" -LOB_CODE <lob_code> -LANGUAGE us -TERRITORY GB…
20 Forum: Security «» Posted on: Tue, 27 September 2022 09:17 «» By: evoradba
how to retrieve user logging 120 days ago
… days ago, is this possible? SELECT c.username, a.SAMPLE_TIME, a.SQL_EXEC_START, b.SQL_TEXT FROM DBA_HIST_ACTIVE_SESS_HISTORY a, dba_hist_sqltext b, dba_users c WHERE a.SQL_ID = b.SQL_ID(+) AND a.user_id…
21 Forum: SQL & PL/SQL «» Posted on: Tue, 28 June 2022 15:43 «» By: Michel Cadot
Re: BASIC SYNTAX
… "username" is either an schema name if the database is local, or username@tnsalias if the database is remote. If the database is local, you must set the environment variable ORACLE_SID to the database name and ORACLE_HOME to the directory …
22 Forum: Server Administration «» Posted on: Tue, 24 May 2022 04:08 «» By: shamsad.khan@gmail.com
Unable to connect to pluggable database - Oracle Datase 12.2.0.1.0
…cl, got error message* ORA-01017: invalid username/password; logon denied Warning: You are no longer connected to ORACLE Again logged in through sqlplus and did the below job alter session set container=orclpdb; alter pluggable database …
23 Forum: SQL & PL/SQL «» Posted on: Sun, 27 January 2002 10:17 «» By: Suresh Vemulapalli
Re: oracle osuser name
there is one more way... select sid,serial#,username,osuser from v$session where username=USER and osuser=sys_context('USERENV','OS_USER')
24 Forum: SQL & PL/SQL «» Posted on: Thu, 24 January 2002 21:01 «» By: Amita Kapadia
oracle osuser name
…I connect to oracle db. I want to know osuser because oracle user name is used by many users. so I cannot say select username,osuser from v$session where username like 'abc' and osuser = ?. so session id or osuser name is required to use in trigger…
25 Forum: JDeveloper, Java & XML «» Posted on: Thu, 21 November 2024 13:47 «» By: wtolentino
Error: Could not find or load main class main.java
…{    private JTextField usernameField;    private JPasswordField passwordField;    public static String user;    public static String password;    public LoginScreen…
26 Forum: Server Administration «» Posted on: Sat, 09 November 2024 10:01 «» By: Michel Cadot
Re: How to find server process/scripts thats locking an account
…wrong password at connection time. Then you have DBA_USERS.LOCK_DATE which will give when lock happened and the audit trail will give you has attempted to connect at this time (OS_USERNAME, USERHOST, TERMINAL); COMMENT_TEXT may be of great help…
27 Forum: JDeveloper, Java & XML «» Posted on: Sat, 05 October 2024 13:45 «» By: FranCasas
Re: Not possible to connect via Java application (JDBC driver) but SQLplus connects
Hi Michel. username/password@host:port/service is for SQLplus, and it works perfect remotely. The error is: java.sql.SQLRecoverableException: Error de E/S: The Network Adapter could not establish the connection Thanks.
28 Forum: JDeveloper, Java & XML «» Posted on: Sat, 05 October 2024 13:39 «» By: Michel Cadot
Re: Not possible to connect via Java application (JDBC driver) but SQLplus connects
… Note that username/password@host:port/service is not the same than jdbc:oracle:thin:@"+localhost+":"+port+":"+sessionID The service name is preceded by a "/" not a ":" which indicates a SID not a …
29 Forum: JDeveloper, Java & XML «» Posted on: Sat, 05 October 2024 07:36 «» By: FranCasas
Re: Not possible to connect via Java application (JDBC driver) but SQLplus connects
…+port+":"+sessionID,user,pw); SQLplus string (working right): username/password@host:port/service Where host contents the same as "localhost" previously, and service is XE. Does this say something to you? Thanks in advance…
30 Forum: Community Hangout «» Posted on: Tue, 21 May 2024 13:30 «» By: Littlefoot
Re: MICROWAVE WOES
… an option (here) ; I chose the "Forgot username" which asks for recovery phone number (and email address, which would be your Hotmail or - if you're willing to try it - Gmail). That's really frustrating. I sincerely hope you'll manage to …
31 Forum: SQL & PL/SQL «» Posted on: Tue, 14 May 2024 11:52 «» By: Barbara Boehmer
Re: Get the MetaData for FGA Policy
…        ( username, when, query)      VALUES        ( USER, SYSTIMESTAMP, SYS_CONTEXT ('USERENV', 'CURRENT_SQL'));      COMMIT…
32 Forum: Security «» Posted on: Fri, 26 April 2024 09:06 «» By: dom606_user
Re: Unlocking Oracle 9i SYS user
…solution? SQL> select account_status from dba_users where username = 'SYS'; ACCOUNT_STATUS -------------------------------- LOCKED conn as sysdba Enter user-name: sys/manager@XE as sysdba ERROR: ORA-28000: The account is locked. BR…
33 Forum: SQL & PL/SQL «» Posted on: Tue, 16 April 2024 10:02 «» By: watisditnou@msn.com
Convert input from user into UPPERCASE
…RCHAR2(10) ACCEPT muser CHAR PROMPT 'Give username :' CREATE USER "&&muser" PROFILE "WORK" IDENTIFIED BY "Test123" PASSWORD EXPIRE DEFAULT TABLESPACE "USERS" TEMPORARY TABLESPACE "TEMP" …
34 Forum: SQL & PL/SQL «» Posted on: Sun, 17 March 2024 12:59 «» By: Littlefoot
Re: Do users ever create tables in these schemas?
…it? The simplest option is to provide username/password combination. If you (presuming you're a DBA) don't share that info with anyone, no problem. Another option is to grant privileges (e.g. CREATE ANY TABLE) which will let that particular user …
35 Forum: Suggestions & Feedback «» Posted on: Wed, 08 November 2023 10:12 «» By: Barbara Boehmer
Re: Login issue
… prompted me to login again, so I entered my username and password and logged in, without encountering anything that asked me to change my password.  I suppose my logging out using Firefox may have caused the website to consider me logged out, even …
36 Forum: Suggestions & Feedback «» Posted on: Wed, 08 November 2023 00:04 «» By: Littlefoot
Login issue
…I'm not redirected to page which requires my username/password combination, but page which asks me to change password (?!?). I just click the "Update" button, without modifying anything on that page. And here I am, logged in. Is that expected…
37 Forum: Security «» Posted on: Fri, 27 October 2023 10:44 «» By: Michel Cadot
Re: ORA-01031 permission denied
…e: An attempt was made to change the current username or password         without the appropriate privilege. This error also occurs if         attempting to install a …
38 Forum: Data Guard «» Posted on: Fri, 29 September 2023 14:09 «» By: LIPEKA
Re: RMAN-00554 RMAN-04006
…. when I do that and run sql>select username, sysdba from v$pwfile_users; it returns no row selected. When I go back and recreated in as orapwSALESPRD  it works fine. I believe the issue is not on the upper/lower case but somewhere else. I have …
39 Forum: Data Guard «» Posted on: Thu, 28 September 2023 15:16 «» By: LIPEKA
Re: RMAN-00554 RMAN-04006
…(c) 1982, 2019, Oracle.  All rights reserved. ERROR: ORA-01017:[color=red] invalid username/password; logon denied[/color] Enter user-name: sys as sysdba Enter password: Connected to an idle instance. SQL>…
40 Forum: Data Guard «» Posted on: Thu, 28 September 2023 01:25 «» By: LIPEKA
RMAN-00554 RMAN-04006
… from auxiliary database: ORA-01017: invalid username/password; logon denied [rock_it_pc1@localhost dbs]$ tnsping SALESPRDSBY TNS Ping Utility for Linux: Version 19.0.0.0.0 - Production on 28-SEP-2023 01:56:56 Copyright (c) 1997, 2019, Oracle…
Pages (125): [1  2  3  4  5  6  7  8  9  10  11  12  13  14  15    »]

Current Time: Sun Nov 24 13:23:20 CST 2024